Crate swc_common[−][src]
Expand description
Utilities for the swc project
Cargo features
tty-emitter
Adds default implementation of Emitter. Enabling this feature will add tty-related dependencies.
sourcemap
Adds methods to generate web sourcemap.
plugin-base
Base mode for plugins, which can be enabled by plugin-mode
or plugin-rt
.
This mode creates a trait which can be used to override swc_common
itself.
plugin-rt
Creates an implementation for the plugin trait. This implements simply
invokes thread-locals declared in swc_common
.
plugin-mode
Allows replacing operations related to thread-local variables with a trait.
Re-exports
pub use self::errors::SourceMapper;
pub use self::errors::SourceMapperDyn;
pub use self::source_map::FileLoader;
pub use self::source_map::FilePathMapping;
pub use self::source_map::SourceMap;
Modules
Machinery for hygienic macros, inspired by the MTWT[1]
paper.
This module reexports items from swc_visit
with some swc-specific traits.
plugin-rt
or plugin-mode
Plugin support.
The SourceMap tracks all the source code used within a single crate, mapping
from integer byte positions to the original source code location. Each bit
of source parsed during crate parsing (typically files, in-memory strings,
or various bits of macro expansion) cover a continuous range of bytes in the
SourceMap and are represented by SourceFiles. Byte positions are stored in
spans
and used pervasively in the compiler. They are absolute positions
within the SourceMap, which upon request can be converted to line and column
information, source code snippets, etc.
This module defines types which are thread safe if cfg!(feature = "concurrent")
is true.
Macros
rustfmt-friendly version of bitflags!
.
Chains multiple visitor.
Structs
A byte offset. Keep this small (currently 32-bits), as AST contains a lot of them.
A character offset. Because of multibyte utf8 characters, a byte offset is not equivalent to a character offset. The SourceMap will convert BytePos values to CharPos values as necessary.
Used to create a .map
file.
A source code location used for error reporting
A source code location used as the result of lookup_char_pos_adj
A mark is a unique id associated with a macro expansion.
A collection of spans. Spans have two orthogonal attributes:
A single source in the SourceMap.
Spans represent a region of code, used for error reporting. Positions in
spans are absolute positions from the beginning of the source_map
, not
positions relative to SourceFile
s. Methods on the SourceMap
can be used
to relate spans back to the original source.
You must be careful if the span crosses more than one file - you will not be
able to use many of the functions on spans in source_map
and you cannot
assume that the length of the span = hi - lo
; there may be space in the
BytePos
range between files.
A SyntaxContext represents a chain of macro expansions (represented by marks).
Enums
Constants
Dummy span, both position and length are zero, syntax context is zero as well.
Statics
Storage for span hygiene data.
Traits
A trait for ast nodes.
Derive with #[derive(EqIgnoreSpan)]
.
Derive
Derive with #[derive(TypeEq)]
.
Attribute Macros
Alias for
#[derive(Spanned, Fold, Clone, Debug, PartialEq)]
for a struct and
#[derive(Spanned, Fold, Clone, Debug, PartialEq, FromVariant)]
for an
enum.
Derives serde::Serialize
and serde::Deserialize
.
Derive Macros
Fields annotated with #[not_panned]
or #[use_eq]
will use ==
instead
of eq_ignore_span
.
#[use_eq]
will be compared using ==
.#[not_type]
will be ignored